{% extends "base_layout.html" %} {% load static %} {% block body %}

Logo

{% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %}

Registration

{% csrf_token %}
{% for field in form %}
{% if field.name == 'password1' %} {% endif %} {{ field }} {% if field.errors %}
{{ field.errors|join:", " }}
{% endif %}
{% endfor %} {% for field in mform %}
{{ field }} {% if field.errors %}
{{ field.errors|join:", " }}
{% endif %}
{% endfor %}
{% endblock body %}